BenSelect Documentation
String to Int - Round to Whole Number
Send Feedback
JScript Examples > JScript for General Use > String to Int - Round to Whole Number

Glossary Item Box

The following script can be applied to a custom import census column where the data is presented as "string", versus numbers.
 

Example:


Under the "Hours per Week" column, values are -
 
12.25
31.34
45.02

 


The script is as follows:
 

var d = Convert.ToDecimal(Event.Record["Hours Per Week"]);

Event.Value = Math.round(d);

 

Explanation


Line 1 converts the value of what is found within the cells of "Hours Per Week" and converts them to a decimal (i.e., a number) value, then assigns the result to variable d.


Line 2 performs the rounding to a whole number (integer) on the variable.
 
The "Hours Per Week" references the column header, as provided by the client. This is illustrated here because the import was a custom import.

 
 
Alternative use:
 
In the event that the column's values are already numbers, a code similar to this can be applied to round the values to whole numbers:
 

d = Event.Record["Hours Per Week"];

Event.Value = Math.round(d);

  

 

©2024. All Rights Reserved.